home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / wsftp_overflows2.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  52 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(15857);
  8.  script_bugtraq_id(11772);
  9.  script_version ("$Revision: 1.1 $");
  10.  name["english"] = "WS FTP server multiple flaws (2)";
  11.  
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. According to its version number, the remote WS_FTP server is vulnerable to 
  16. multiple buffer overflows which may be used by an attacker to execute arbitary
  17. code on the remote system.
  18.  
  19. Solution : Upgrade to the latest version of this software.
  20. Risk factor : High";
  21.  
  22.  script_description(english:desc["english"]);
  23.  
  24.  summary["english"] = "Check WS_FTP server version";
  25.   script_summary(english:summary["english"]);
  26.  
  27.  script_category(ACT_GATHER_INFO);
  28.  
  29.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  30.  
  31.  family["english"] = "FTP";
  32.  family["francais"] = "FTP";
  33.  script_family(english:family["english"]);
  34.  script_dependencie("find_service.nes", "ftpserver_detect_type_nd_version.nasl");
  35.  script_require_ports("Services/ftp", 21);
  36.  
  37.  exit(0);
  38. }
  39.  
  40. #
  41.  
  42. include ("ftp_func.inc");
  43.  
  44. port = get_kb_item("Services/ftp");
  45. if(!port) port = 21;
  46. if (! get_port_state(port)) exit(0);
  47. banner = get_ftp_banner(port);
  48. if ( ! banner ) exit(0);
  49.  
  50. if (egrep(pattern:"WS_FTP Server ([0-4]\.|5\.0\.[0-3][^0-9])", string: banner))
  51.     security_hole(port);
  52.